home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / apt-xapian-index / plugins / template.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2009-10-28  |  3KB  |  86 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4.  
  5. class Template:
  6.     
  7.     def info(self):
  8.         '''
  9.         Return general information about the plugin.
  10.  
  11.         The information returned is a dict with various keywords:
  12.          
  13.          timestamp (required)
  14.            the last modified timestamp of this data source.  This will be used
  15.            to see if we need to update the database or not.  A timestamp of 0
  16.            means that this data source is either missing or always up to date.
  17.          values (optional)
  18.            an array of dicts { name: name, desc: description }, one for every
  19.            numeric value indexed by this data source.
  20.  
  21.         Note that this method can be called before init.  The idea is that, if
  22.         the timestamp shows that this plugin is currently not needed, then the
  23.         long initialisation can just be skipped.
  24.         '''
  25.         return dict(timestamp = 0, values = [])
  26.  
  27.     
  28.     def init(self, info, progress):
  29.         '''
  30.         If needed, perform long initialisation tasks here.
  31.  
  32.         info is a dictionary with useful information.  Currently it contains
  33.         the following values:
  34.  
  35.           "values": a dict mapping index mnemonics to index numbers
  36.  
  37.         The progress indicator can be used to report progress.
  38.         '''
  39.         pass
  40.  
  41.     
  42.     def doc(self):
  43.         '''
  44.         Return documentation information for this data source.
  45.  
  46.         The documentation information is a dictionary with these keys:
  47.           name: the name for this data source
  48.           shortDesc: a short description
  49.           fullDoc: the full description as a chapter in ReST format
  50.         '''
  51.         pass
  52.  
  53.     
  54.     def index(self, document, pkg):
  55.         '''
  56.         Update the document with the information from this data source.
  57.  
  58.         document  is the document to update
  59.         pkg       is the python-apt Package object for this package
  60.         '''
  61.         pass
  62.  
  63.     
  64.     def indexDeb822(self, document, pkg):
  65.         '''
  66.         Update the document with the information from this data source.
  67.  
  68.         This is alternative to index, and it is used when indexing with package
  69.         data taken from a custom Packages file.
  70.  
  71.         document  is the document to update
  72.         pkg       is the Deb822 object for this package
  73.         '''
  74.         pass
  75.  
  76.  
  77.  
  78. def init():
  79.     '''
  80.     Create and return the plugin object.
  81.  
  82.     Return None here to disable this plugin.
  83.     '''
  84.     return Template()
  85.  
  86.